Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | export default { |
||
34 | .then(function () { |
||
35 | let title = 'Project Hidden'; |
||
36 | let message = this.project.name + ' is not publicly viewable'; |
||
37 | |||
38 | if (this.visible) { |
||
39 | title = 'Project Visible'; |
||
40 | message = this.project.name + ' is now publicly viewable'; |
||
41 | } |
||
42 | |||
43 | this.flash({ |
||
44 | title: title, |
||
45 | message: message, |
||
46 | type: 'success' |
||
47 | }); |
||
48 | }) |
||
49 | .catch(function () { |
||
71 | }; |